home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python152_Src.lha / Python152_Source / Modules / protos / timemodule.h < prev    next >
C/C++ Source or Header  |  1999-04-25  |  1KB  |  21 lines

  1. #ifdef macintosh
  2. static void initmactimezone ( void );
  3. #endif
  4. static PyObject *time_time ( PyObject *self , PyObject *args );
  5. static PyObject *time_clock ( PyObject *self , PyObject *args );
  6. static PyObject *time_clock ( PyObject *self , PyObject *args );
  7. static PyObject *time_sleep ( PyObject *self , PyObject *args );
  8. static PyObject *tmtotuple ( struct tm *p );
  9. static PyObject *time_gmtime ( PyObject *self , PyObject *args );
  10. static PyObject *time_localtime ( PyObject *self , PyObject *args );
  11. static int gettmarg ( PyObject *args , struct tm *p );
  12. static PyObject *time_strftime ( PyObject *self , PyObject *args );
  13. #ifdef HAVE_STRPTIME
  14. static PyObject *time_strptime ( PyObject *self , PyObject *args );
  15. #endif
  16. static PyObject *time_asctime ( PyObject *self , PyObject *args );
  17. static PyObject *time_ctime ( PyObject *self , PyObject *args );
  18. static PyObject *time_mktime ( PyObject *self , PyObject *args );
  19. static void ins ( PyObject *d , char *name , PyObject *v );
  20. static PyObject *time_convert(time_t when, struct tm * (*function) (const time_t *));
  21.